func time.isDigit
10 uses
time (current package)
format.go#L324: if !isDigit(layout, j) {
format.go#L915: func isDigit[bytes []byte | string](s bytes, i int) bool {
format.go#L927: if !isDigit(s, 0) {
format.go#L930: if !isDigit(s, 1) {
format.go#L944: for i = 0; i < 3 && isDigit(s, i); i++ {
format.go#L1104: if len(value) < 4 || !isDigit(value, 0) {
format.go#L1168: if len(value) >= 2 && commaOrPeriod(value[0]) && isDigit(value, 1) {
format.go#L1177: for ; n < len(value) && isDigit(value, n); n++ {
format_rfc3339.go#L120: if len(s) >= 2 && s[0] == '.' && isDigit(s, 1) {
format_rfc3339.go#L122: for ; n < len(s) && isDigit(s, n); n++ {